95869cd7fde10c68ad866aa606e164caf2aad1c3,core/src/main/java/com/dm/material/dashboard/candybar/adapters/IntentAdapter.java,IntentAdapter,sendRequest,#ComponentName#,130

Before Change


        intent.addCategory(Intent.CATEGORY_LAUNCHER);
        intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
                Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
        intent.setComponent(name);
        mContext.startActivity(intent);
    }

After Change


    private void sendRequest(ComponentName name) {
        try {
            Intent intent = new Intent(Intent.ACTION_SEND);
            intent = addIntentExtra(intent);
            intent.setComponent(name);
            intent.addCategory(Intent.CATEGORY_LAUNCHER);
            mContext.startActivity(intent);
        } catch (IllegalArgumentException e) {